home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_222 / plplot / src / source.zoo / plfont.c < prev    next >
C/C++ Source or Header  |  1989-05-15  |  304b  |  16 lines

  1. #include "plplot.h"
  2.  
  3. void plfont(ifont)
  4. int ifont;
  5. {
  6.       int ifnt,icol;
  7.  
  8.       int level;
  9.       glev(&level);
  10.       if (level < 1) fatal("Please call PLSTAR before calling PLFONT.");
  11.  
  12.       if (ifont < 1 || ifont > 4) fatal("Invalid font in PLFONT");
  13.       gatt(&ifnt,&icol);
  14.       satt(ifont,icol);
  15. }
  16.